summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWollnashorn <Wollnashorn@users.noreply.github.com>2023-01-06 16:52:41 +0100
committerWollnashorn <Wollnashorn@users.noreply.github.com>2023-01-06 16:52:41 +0100
commit457826a83b801c6a4687714998a7f606f084be4c (patch)
treeec9212ad3c78eec08c43d505ff23f79da64beafc
parentMerge pull request #9535 from bylaws/master (diff)
downloadyuzu-457826a83b801c6a4687714998a7f606f084be4c.tar
yuzu-457826a83b801c6a4687714998a7f606f084be4c.tar.gz
yuzu-457826a83b801c6a4687714998a7f606f084be4c.tar.bz2
yuzu-457826a83b801c6a4687714998a7f606f084be4c.tar.lz
yuzu-457826a83b801c6a4687714998a7f606f084be4c.tar.xz
yuzu-457826a83b801c6a4687714998a7f606f084be4c.tar.zst
yuzu-457826a83b801c6a4687714998a7f606f084be4c.zip
-rw-r--r--src/video_core/renderer_vulkan/vk_pipeline_cache.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
index 013b42cf8..7e69b11d8 100644
--- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
+++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
@@ -793,7 +793,8 @@ vk::PipelineCache PipelineCache::LoadVulkanPipelineCache(const std::filesystem::
return create_pipeline_cache(0, nullptr);
}
- const size_t cache_size = static_cast<size_t>(end) - magic_number.size();
+ static constexpr size_t header_size = magic_number.size() + sizeof(cache_version);
+ const size_t cache_size = static_cast<size_t>(end) - header_size;
std::vector<char> cache_data(cache_size);
file.read(cache_data.data(), cache_size);